From: Richard M. Stallman Date: Sun, 13 Jun 1993 23:15:39 +0000 (+0000) Subject: (Fprimitive_undo): Rename arg to N to avoid conflict. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~95341 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=063fb61f51cc9dbab9eaf4e537255374ee6d4315;p=emacs.git (Fprimitive_undo): Rename arg to N to avoid conflict. --- diff --git a/src/undo.c b/src/undo.c index 1c399fb873f..2e6cae310b6 100644 --- a/src/undo.c +++ b/src/undo.c @@ -285,11 +285,11 @@ truncate_undo_list (list, minsize, maxsize) DEFUN ("primitive-undo", Fprimitive_undo, Sprimitive_undo, 2, 2, 0, "Undo N records from the front of the list LIST.\n\ Return what remains of the list.") - (count, list) - Lisp_Object count, list; + (n, list) + Lisp_Object n, list; { int count = specpdl_ptr - specpdl; - register int arg = XINT (count); + register int arg = XINT (n); #if 0 /* This is a good feature, but would make undo-start unable to do what is expected. */ Lisp_Object tem;